== Installing LinuxBridge ==

apt-get install neutron-plugin-linuxbridge-agent

== Configuring ML2 ==

## BEGIN updates to /etc/neutron/plugins/ml2/ml2_conf.ini

[ml2]
mechanism_drivers = linuxbridge,l2population
tenant_network_types = vxlan,vlan

[ml2_type_flat]
flat_networks = physnet2

[ml2_type_vlan]
network_vlan_ranges = physnet2:30:33

[ml2_type_vxlan]
vni_ranges = 1:1000

[securitygroup]
firewall_driver = neutron.agent.linux.iptables_firewall.IptablesFirewallDriver

[linux_bridge]
physical_interface_mappings = physnet2:eth2

[vxlan]
enable_vxlan = true
l2_population = true
local_ip = 172.18.0.101

## END updates to /etc/neutron/plugins/ml2/ml2_conf.ini

## BEGIN updates to /etc/nova/nova.conf

[DEFAULT]
linuxnet_interface_driver = nova.network.linux_net.LinuxBridgeInterfaceDriver

## END updates to /etc/nova/nova.conf


service service neutron-plugin-linuxbridge-agent restart
service nova-compute restart
